home *** CD-ROM | disk | FTP | other *** search
- /* #ident "@(#)tt.c - a typing tutor." */
-
- /*
- * Note: No #include <stdio.h> as it is within curses.h!
- */
-
- #include <curses.h>
- #include "tt.h"
-
- /*
- * The global variables.
- *
- * if you add others or change anything, dont forget to ensure
- * you make EXACTLY the same changes in the "externals.h file.
- */
-
- char file_name[FILE_NAME_SIZE], *ipbuffer, *ipbp;
- FILE *lesson;
- WINDOW *top_window, *middle_window, *bottom_window, *current_window;
-
- main()
- {
- init();
- do_lesson ();
- clear ();
- refresh ();
- endwin ();
- exit ( OK );
- }
-
-